CONTINUE
RETRY

Syntax: CONTINUE
    or: CONTINUE [line_no]  (Toolkit II & Minerva)
   and: RETRY
    or: RETRY [line_no]  (Toolkit II and Minerva)
Location: QL ROM, Toolkit II

CONTINUE allows the user to try and recover from an error (normally after STOP or pressing the Break key), by telling the interpreter to carry on running the program from the next statement.

RETRY is similar. However, interpreting re-starts with the statement at which the error occurred (CONTINUE re-starts the program from the next statement).

If you have Toolkit II or Minerva installed, you will be able to use the second variant of this command which allows you to re-start processing at a specified line number to help with error trapping. If the parameter is specified, this is exactly the same as the second variant of CONTINUE.

NOTE:
Beware that RENUM does not renumber line_no if you have used this command as part of a program.

CONTINUE can only re-start processing if no new lines have been added; no new variables have been added to the program; no lines have been altered; and the PROC/FN Cleared message has not appeared.

CROSS-REFERENCE:
See WHEN ERRor.
